home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 4 / QRZ Ham Radio Callsign Database - Volume 4.iso / digests / infoham / 940298.txt < prev    next >
Internet Message Format  |  1994-11-13  |  25KB

  1. Date: Wed, 16 Mar 94 23:36:33 PST
  2. From: Info-Hams Mailing List and Newsgroup <info-hams@ucsd.edu>
  3. Errors-To: Info-Hams-Errors@UCSD.Edu
  4. Reply-To: Info-Hams@UCSD.Edu
  5. Precedence: Bulk
  6. Subject: Info-Hams Digest V94 #298
  7. To: Info-Hams
  8.  
  9.  
  10. Info-Hams Digest            Wed, 16 Mar 94       Volume 94 : Issue  298
  11.  
  12. Today's Topics:
  13.                                 (none)
  14.                      10 GHz EME question (3 msgs)
  15.                             1x1 Callsigns?
  16.                    2 meter use in London, England?
  17.                               Alinco 180
  18.                           Looking for KA2ZNB
  19.                              Net Schedule
  20.                                Part 97
  21.            Sorting the confusing between World and Oakland
  22.                           Tickling the Ether
  23.  
  24. Send Replies or notes for publication to: <Info-Hams@UCSD.Edu>
  25. Send subscription requests to: <Info-Hams-REQUEST@UCSD.Edu>
  26. Problems you can't solve otherwise to brian@ucsd.edu.
  27.  
  28. Archives of past issues of the Info-Hams Digest are available 
  29. (by FTP only) from UCSD.Edu in directory "mailarchives/info-hams".
  30.  
  31. We trust that readers are intelligent enough to realize that all text
  32. herein consists of personal comments and does not represent the official
  33. policies or positions of any party.  Your mileage may vary.  So there.
  34. ----------------------------------------------------------------------
  35.  
  36. Date: 17 Mar 94 05:30:16 GMT
  37. From: news-mail-gateway@ucsd.edu
  38. Subject: (none)
  39. To: info-hams@ucsd.edu
  40.  
  41. (*
  42. To All hams interested.
  43.  
  44.   I said a long time ago that I would release this source code. Well, here
  45.   it is! It does work rather well, and in fact, better than the phone!
  46.   I am currently developing a ** FREE ** repeater controller package
  47.   around this idea, along with voice mail and the like, but, I am in
  48.   need of some more assistance. Is anyone interested in helping me out with
  49.   some ideas? I just need a jump start, and I would prefer to have some
  50.   source assembler code for another repeater controller.
  51.  
  52.   Not too long ago, I saw such a program, but lost it (and the BBS is down!)
  53.   Please, if you can help me out, drop me a line via the internet address
  54.   given below (It is hard for me to read this newsgroup; just send me a note).
  55.  
  56.   Thanks,
  57.   Jim (N9IEO)
  58.   internet: jjacobse@siucvmb.siu.edu
  59.  
  60. -------------------------------------------------------------------------------
  61.  
  62.    DTMF Touch Tone Generator
  63.    Written by: Jim Jacobsen (N9IEO)  (jjacobse@siucvmb.siu.edu)
  64.    This program uses the Sound Blaster FM chips to generate Touch Tones
  65.  
  66. *)
  67.  
  68. Unit SBlaster;
  69. Interface
  70. Uses Dos;
  71.  
  72. Procedure Generate_tone(c1,c2: word);
  73. Procedure Release_tone;
  74. Procedure touchtone(c: char);
  75. implementation
  76.  
  77. Const
  78.    tns: array[1..8] of word = (920,1019,1586,1640,1824,1905,2004,2590);
  79.  
  80. Var
  81.   r1,r2: word;
  82.  
  83. (* This is an internal function to write a tone to the adlib/sound
  84.    blaster card *)
  85.  
  86. Procedure Writeport(reg,val: word);
  87. var i,c: word;
  88. Begin
  89.   port[$388]:=reg;
  90.   for i:=1 to 12 do c:=port[$388];
  91.   port[$389]:=val;
  92.   for i:=1 to 30 do c:=port[$388];
  93. end;
  94.  
  95. Procedure Generate_tone(c1,c2: word);
  96. Begin
  97.  
  98.  writeport($b3,$2f); writeport($b4,$2f);
  99.  writeport($e0,0);   { Set Wave for voice 1 }
  100.  writeport($e1,0);   { Voice 2 }
  101.  writeport($c0,1);   { Use Additive Synthesis }
  102.  writeport($c1,1);
  103.  writeport($20,1);   { Multiple - 1 }
  104.  writeport($21,1);
  105.  writeport($40,$1);  { Level - 0 Highest }
  106.  writeport($41,$1);
  107.  writeport($60,$f0); { Attack / Decay }
  108.  writeport($61,$f0);
  109.  writeport($80,$Ff); { Sustain / Release }
  110.  writeport($81,$Ff);
  111.  writeport($a0,c1 and $ff);  { Note # }
  112.  writeport($a1,c2 and $ff);
  113.  writeport($b0,$30 or (c1 shr 8)); { Note on, Octave }
  114.  writeport($b1,$30 or (c2 shr 8));
  115.  r1:=c1 shr 8; r2:=c2 shr 8;
  116. end;
  117.  
  118. (* This procedure silences the tones *)
  119.  
  120. procedure release_tone;
  121. Begin
  122.  writeport($b0,r1);
  123.  writeport($b1,r2);
  124. end;
  125.  
  126. (* This procedure is used to generate DTMF tones, use the valid DTMF
  127.    digits *)
  128.  
  129. procedure touchtone(c: char);
  130. var
  131.   w1,w2: word;
  132.  
  133. Begin
  134.    c:=upcase(c);
  135.   if c in ['0'..'9','A'..'D','#','*'] then
  136.   begin
  137.    case c of
  138.      '1','4','7','*': w1:=tns[5];
  139.      '2','5','8','0': w1:=tns[6];
  140.      '3','6','9','#': w1:=tns[7];
  141.      'A'..'D':        w1:=tns[8];
  142.    end;
  143.    case c of
  144.      '1','2','3','A': w2:=tns[1];
  145.      '4','5','6','B': w2:=tns[2];
  146.      '7','8','9','C': w2:=tns[3];
  147.      '*','0','#','D': w2:=tns[4];
  148.    end;
  149.    generate_tone(w2,w1);
  150.   end;
  151. end;
  152.  
  153. end.
  154.  
  155. ------------------------------
  156.  
  157. Date: Wed, 16 Mar 1994 17:10:07 GMT
  158. From: ihnp4.ucsd.edu!dog.ee.lbl.gov!agate!howland.reston.ans.net!europa.eng.gtefsd.com!emory!wa4mei!ke4zv!gary@network.ucsd.edu
  159. Subject: 10 GHz EME question
  160. To: info-hams@ucsd.edu
  161.  
  162. In article <16MAR94.10615803.0021.MUSIC@SLUMUS> MOWE%SLUMUS.BITNET@CUNYVM.CUNY.EDU (Michael Owen) writes:
  163. >The Toronto VHF Society (VE3ONT) is beginning to make
  164. >plans for EME operations using the 46 m (150') dish at
  165. >Algonquin Park later this year.
  166. >
  167. >We have been discussing the possibility of trying EME on
  168. >10 GHz.  The dish is figured to at least 12 GHz, and is
  169. >adequately steerable.  The question is this: is there any
  170. >point to using such a big dish at 10 GHz for EME?  One
  171. >argument says "yes, the gain will be humungous."  Another
  172. >argument says "no, the high gain of the dish will under-
  173. >illuminate the Moon so there is no *real* monster gain."
  174. >
  175. >I subscribe to the latter point of view.  It seems to me that
  176. >an antenna beamwidth of < the Moon's diameter doesn't benefit
  177. >the overall link budget.  By this argument, 10GHz EME is
  178. >optimum with a dish about 4m in diameter (beamwidth about 0.5
  179. >degrees, the apparent width of the Moon).  The 46 m dish will be
  180. >no better than a 4 m dish.
  181. >
  182. >So... am I correct?
  183.  
  184. I don't think so. The libration fading will be much reduced by
  185. illuminating a smaller portion of the Moon. And gain is gain,
  186. the extra gain will be usable for transmit. For receive it's
  187. a somewhat different matter. Stations using small dishes will
  188. be illuminating the entire lunar hemisphere. Your dish will
  189. only receive part of that energy since the rest will fall outside
  190. your beamwidth. But the extra dish gain should compensate for
  191. that, and your receive strength should be similar to that of
  192. a dish that just illuminates the entire Moon. And, you'll receive
  193. less thermal noise from the rest of the Moon, and less libration
  194. fading. So while the big dish won't be that much better for receive, 
  195. it won't be worse, and on transmit it will be a big help to other 
  196. stations because it's reflected signal will behave more like a 
  197. strong point source.
  198.  
  199. Gary
  200. -- 
  201. Gary Coffman KE4ZV          |    You make it,     | gatech!wa4mei!ke4zv!gary
  202. Destructive Testing Systems |    we break it.     | uunet!rsiatl!ke4zv!gary
  203. 534 Shannon Way             |    Guaranteed!      | emory!kd4nc!ke4zv!gary 
  204. Lawrenceville, GA 30244     |                     | 
  205.  
  206. ------------------------------
  207.  
  208. Date: 16 Mar 1994 20:33:03 +0200
  209. From: ihnp4.ucsd.edu!library.ucla.edu!europa.eng.gtefsd.com!howland.reston.ans.net!EU.net!sunic!news.funet.fi!news.cc.tut.fi!lehtori.cc.tut.fi!not-for-mail@network.ucsd.edu
  210. Subject: 10 GHz EME question
  211. To: info-hams@ucsd.edu
  212.  
  213. Michael Owen  (MOWE%SLUMUS.BITNET@CUNYVM.CUNY.EDU) wrote:
  214.  
  215. > The Toronto VHF Society (VE3ONT) is beginning to make
  216. > plans for EME operations using the 46 m (150') dish at
  217. > Algonquin Park later this year.
  218.  
  219. > We have been discussing the possibility of trying EME on
  220. > 10 GHz.  The dish is figured to at least 12 GHz, and is
  221. > adequately steerable.  The question is this: is there any
  222. > point to using such a big dish at 10 GHz for EME?  One
  223. > argument says "yes, the gain will be humungous."  Another
  224. > argument says "no, the high gain of the dish will under-
  225. > illuminate the Moon so there is no *real* monster gain."
  226.  
  227. Assuming similar reflective properties of the lunar soil in the 
  228. optical band and in the SHF band no monster gain should be expected.
  229. Look at the Moon during opposition (full Moon), the highlands in
  230. the center of the lunar disk are as bright as the higlands near the
  231. periphery of the disk. Thus no benefit should be expected from
  232. concentrating all radiation on a small spot in the highland area
  233. of the Moon and no net gain should be expected. (When the Moon is
  234. in opposition, the light from the Sun illuminates the lunar surface
  235. from the same direction as an EME transmitter).
  236.  
  237. On the other hand, if the illuminated spot size on the Moon is much 
  238. smaller than the lunar diameter and the antenna can be controlled 
  239. precisely, you could avoid low reflectivity (Mare-) areas. Thus the
  240. effective reflectivity is higher and you would get some net gain.
  241.  
  242. If the receiver is sensitive enough so that you can hear the thermal
  243. noise from the Moon, the antenna should be aimed at the coldest
  244. part of the surface, to areas where the Sun is going to rise in a few
  245. days. These areas have been in darkness for allmost two weeks.
  246. This should be tried before the Moon is in the first quarter,
  247. so that the spot can be positioned based on other criteria and
  248. not just the temperature.
  249.  
  250. Other things to investigate is how a small spot size affects libration
  251. fading and coherence bandwidth when beamed at a flat area (Mares).
  252.  
  253. I would expect that the readability could be improved by lower noise
  254. and lower signal distorsion/dispersion even if the received power
  255. remains (allmost) the same.
  256.  
  257.                 Paul OH3LWR
  258.                 
  259.  
  260. --------------------------------------------------------------------
  261. Phone   : +358-31-213 3657                                 
  262. X.400   : G=Paul S=Keinanen O=Kotiposti A=ELISA C=FI 
  263. Internet: Paul.Keinanen@Telebox.tele.fi
  264. Telex   : 58-100 1825 (ATTN: Keinanen Paul)            
  265. Mail    : Hameenpuisto 42 A 26
  266.           FIN-33200 TAMPERE
  267.           FINLAND
  268.  
  269. ------------------------------
  270.  
  271. Date: Wed, 16 Mar 1994 20:23:52 GMT
  272. From: ihnp4.ucsd.edu!library.ucla.edu!europa.eng.gtefsd.com!howland.reston.ans.net!wupost!gumby!newsxfer.itd.umich.edu!ncar!csn!col.hp.com!srgenprp!alanb@network.ucsd.edu
  273. Subject: 10 GHz EME question
  274. To: info-hams@ucsd.edu
  275.  
  276. Michael Owen (MOWE%SLUMUS.BITNET@CUNYVM.CUNY.EDU) wrote:
  277. : The Toronto VHF Society (VE3ONT) is beginning to make
  278. : plans for EME operations using the 46 m (150') dish at
  279. : Algonquin Park later this year.
  280.  
  281. : We have been discussing the possibility of trying EME on
  282. : 10 GHz.  The dish is figured to at least 12 GHz, and is
  283. : adequately steerable.  The question is this: is there any
  284. : point to using such a big dish at 10 GHz for EME?  One
  285. : argument says "yes, the gain will be humungous."  Another
  286. : argument says "no, the high gain of the dish will under-
  287. : illuminate the Moon so there is no *real* monster gain."
  288.  
  289. : I subscribe to the latter point of view.  It seems to me that
  290. : an antenna beamwidth of < the Moon's diameter doesn't benefit
  291. : the overall link budget.  By this argument, 10GHz EME is
  292. : optimum with a dish about 4m in diameter (beamwidth about 0.5
  293. : degrees, the apparent width of the Moon).  The 46 m dish will be
  294. : no better than a 4 m dish.
  295.  
  296. I disagree.
  297.  
  298. Illuminating the center of the moon is more effective than the edges.  
  299. A surface radiates maximally in the perpendicular direction.  I believe 
  300. the radiation falls off as the cosine of the angle, or even faster 
  301. depending on surface type.  This happens on both transmit and receive.
  302. Since the edges of the moon point away from the earth, much of that
  303. power is wasted.
  304.  
  305. Assuming the 46m dish has SQRT(4/46) = .3 times the beamwidth of the 
  306. 4 meter dish, then that may result is a fairly optimum illumination 
  307. of the moon.  It should help reduce libration fading as well.
  308.  
  309. AL N1AL
  310.  
  311. ------------------------------
  312.  
  313. Date: 16 Mar 1994 19:57:13 GMT
  314. From: ihnp4.ucsd.edu!swrinde!cs.utexas.edu!howland.reston.ans.net!math.ohio-state.edu!news.acns.nwu.edu!casbah.acns.nwu.edu!lapin@network.ucsd.edu
  315. Subject: 1x1 Callsigns?
  316. To: info-hams@ucsd.edu
  317.  
  318. In article <CMGtpo.4t9@cup.hp.com>, Jim Hollenback <jholly@cup.hp.com> wrote:
  319. >Bob Levine (levine@mc.com) wrote:
  320. >: Has anyone seen anything in print about whether the vanity
  321. >: callsign program (someday) might allow 1x1 calls?
  322. >
  323. >: (for info, a 1x1 is like K1X)
  324. >
  325. >
  326. >No, but I've heard ther is a 2X1 ... JY1
  327. >
  328. >Jim, WA6SDM
  329. >
  330.  
  331.  
  332. That's 2x0, but I think you have to be royalty to get it :-)
  333.  
  334. Greg, KD9AZ
  335.  
  336. ------------------------------
  337.  
  338. Date: 16 Mar 1994 18:11:39 -0000
  339. From: news.cerf.net!pravda.sdsc.edu!acsc.com!wp-sp.nba.trw.com!elroy.jpl.nasa.gov!swrinde!cs.utexas.edu!convex!news.utdallas.edu!corpgate!bnrgate!bnr.co.uk!pipex!uknet!acorn!@ihnp4.ucsd.edu
  340. Subject: 2 meter use in London, England?
  341. To: info-hams@ucsd.edu
  342.  
  343. In article <2m7dmi$7pr@usenet.INS.CWRU.Edu> cw400@cleveland.Freenet.Edu (Eric L. Bartholomew) writes:
  344. >
  345. >
  346. >Most repeaters in Europe, including the UK, require a 1750 Hz
  347. >tone burst at the beginning of your transmission to access the
  348. >repeater.  European ham gear usually include the tone burst as
  349. >a standard feature, but your american gear will not have this
  350. >feature.
  351.  
  352. UK repeaters are moving toward responding to CTCSS tones as well
  353. as a 1750Hz toneburst. The CTCSS tone is allocated by area in a
  354. system that almost, but not completely, fails to stop the users
  355. of other repeaters (on the same frequency) accessing both under
  356. lift conditions. The tone in use is announced by a single letter
  357. tacked onto the end of the repeater's CWID - sorry, I forget the
  358. encoding scheme. Some repeaters also transmit the same tone when
  359. their input is unsquelched, so if your radio permits you may be 
  360. able to scan the tones until you detect the one in use.
  361.  
  362. UK repeaters aren't allowed to use CTCSS to limit access to 
  363. a closed user group - only to reject interference.
  364.  
  365. >
  366. >Prehaps you could install the burst encoder in a speaker/mic,
  367. >eliminating the need to perform surgery on your HT.  Communication
  368. >Specialists of California sells a sutiable tone burst board,
  369. >you can get their 800 number out of any of the ham mags.    
  370. >
  371.  
  372. UK hams who own ex-PMR gear and can't be bothered to add a toneburst
  373. board acquire the ability to whistle at 1750 Hz - this isn't really
  374. very hard, as most repeaters aren't too fussy : a slowly rising 
  375. whistle will usually do the job.
  376.  
  377. -adrian, g7hwn
  378.  
  379. ------------------------------
  380.  
  381. Date: 16 Mar 1994 21:20:05 GMT
  382. From: ihnp4.ucsd.edu!swrinde!emory!news-feed-2.peachnet.edu!concert!lester.appstate.edu!usenet@network.ucsd.edu
  383. Subject: Alinco 180
  384. To: info-hams@ucsd.edu
  385.  
  386. I have an Alinco 180 (?) 2 meter HT and can't figure out how to enable
  387. the extended receive.  Does anyone out there know?  I can't remember.
  388.  
  389.                         KE4FPZ
  390.  
  391. ------------------------------
  392.  
  393. Date: Mon, 14 Mar 1994 18:04:58 GMT
  394. From: hub.cs.jmu.edu!hearst.acc.Virginia.EDU!cscsun!dtiller@uunet.uu.net
  395. Subject: Looking for KA2ZNB
  396. To: info-hams@ucsd.edu
  397.  
  398. Wilfried Besig (wil@maschinenbau.tu-ilmenau.de) wrote:
  399. : Hi,
  400. : I am looking for the location of KA2ZNB, who lived in Cape Cod previously.
  401. : The address in the NA-callbook seems not to be updated.
  402. : Does anybody know him?
  403. : We had many 2m QSOs when he has been in Germany. But now we have lost the 
  404. : connections.
  405. : My former callsign was Y21DK , now I am DG0OD.
  406. : 73,and thanks for reading this message.
  407.  
  408. I get:
  409.   David A. Pillsbury
  410.  HHC 54TH ENGR BN
  411.  APO NY, NY 09026
  412.  
  413. Is that the same address that's in the callbook?
  414. It would seem he's in the military with an address like that.  Heaven knows
  415. where he really is.  If he's still in the service, they'll forward his mail
  416. to him.
  417. -- 
  418. David Tiller           | Network Administrator | Voice: (804) 752-3710   |
  419. dtiller@rmc.edu        | Randolph-Macon College| Fax:   (804) 752-7231   |
  420. "Drunk, [Beowulf] slew | P.O. Box 5005         | ICBM:  37d 42' 43.75" N |
  421. no hearth companions." | Ashland, Va 23005     |        77d 31' 32.19" W |
  422.  
  423. ------------------------------
  424.  
  425. Date: Tue, 15 Mar 1994 11:10:04 GMT
  426. From: netcon!hatch!pro-palmtree!pro-janin!jestevez@locus.ucla.edu
  427. Subject: Net Schedule
  428. To: info-hams@ucsd.edu
  429.  
  430.          *****  Propagation Schedule  *****              Updated: 21 Jan 1994
  431.  
  432.  
  433.  
  434. UTC   W0 W1 W2 W3 W4 W5 W6 W7 W8 W9 XE VE 6Y   
  435. ----  ------------------------------------------------------------------------
  436. 0100
  437. 0200
  438. 0300
  439. 0400
  440. 0500
  441. 0600
  442. 0700
  443. 0800
  444. 0900
  445. 1000
  446. 1100
  447. 1200
  448. 1300
  449. 1400
  450. 1500
  451. 1600
  452. 1700
  453. 1800
  454. 1900
  455. 2000
  456. 2100
  457. 2200
  458. 2300
  459. -------------------------------------------------------------------------------
  460.  
  461. ------------------------------
  462.  
  463. Date: 16 Mar 1994 21:16:56 GMT
  464. From: ihnp4.ucsd.edu!swrinde!emory!news-feed-2.peachnet.edu!concert!lester.appstate.edu!usenet@network.ucsd.edu
  465. Subject: Part 97
  466. To: info-hams@ucsd.edu
  467.  
  468. Is there a way I can get a copy of the revised Part 97 via e-mail?
  469.  
  470.                     Shawn Watkins
  471.                     KE4FPZ
  472.  
  473. ------------------------------
  474.  
  475. Date: Wed, 16 Mar 1994 20:47:45 GMT
  476. From: ihnp4.ucsd.edu!agate!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!csus.edu!netcom.com!wy1z@network.ucsd.edu
  477. Subject: Sorting the confusing between World and Oakland
  478. To: info-hams@ucsd.edu
  479.  
  480. I have received many questions about where the ham radio FTP files are - 
  481. World or Oakland?
  482.  
  483. When I posted the message about the switchover from World to Oakland, I'd 
  484. completely forgotten about the automated period reminder about the file 
  485. availability on World.
  486.  
  487. I have modified that periodic reminder, and will have it replace the one 
  488. mentioning World.  It will, instead, mention Oakland.
  489.  
  490. Sorry for any confusion or inconvenience this may have caused.
  491.  
  492. Scott Ehrlich, WY1Z
  493.  
  494.  
  495. -- 
  496. ===============================================================================
  497. | Scott Ehrlich           Amateur Radio: wy1z      AMPRnet: wy1z@wa1phy.ampr.org |
  498. | Internet: wy1z@neu.edu   BITnet: wy1z@NUHUB    AX.25: wy1z@wa1phy.ma.usa.na |
  499. |-----------------------------------------------------------------------------|
  500. |       Maintainer of the Boston Amateur Radio Club hamradio FTP area on      |
  501. |            oak.oakland.edu:/pub/hamradio                    |
  502. ===============================================================================
  503.  
  504. ------------------------------
  505.  
  506. Date: 16 Mar 1994 17:18:15 GMT
  507. From: malgudi.oar.net!gomer.aldus.com!usenet@sun.com
  508. Subject: Tickling the Ether
  509. To: info-hams@ucsd.edu
  510.  
  511. In article <gregCMpq2C.BqF@netcom.com> greg@netcom.com (Greg Bullough) writes:
  512. >[a very nice narrative]
  513.  
  514. Thanks, Greg. What a refreshing improvement to the signal-to-noise ratio.
  515.  
  516. David Mitchell
  517.    Aldus Corporation      Bainbridge Ometepe Sister Islands Association
  518. david.mitchell@aldus.com               davidm@bosia.org
  519. My opinions are my own.
  520.  
  521. ------------------------------
  522.  
  523. Date: Wed, 16 Mar 1994 19:45:52 GMT
  524. From: ihnp4.ucsd.edu!agate!howland.reston.ans.net!math.ohio-state.edu!magnus.acs.ohio-state.edu!csn!col.hp.com!fc.hp.com!jayk@network.ucsd.edu
  525. To: info-hams@ucsd.edu
  526.  
  527. References <2m09j7$4i@apple.com>, <2m78pf$5kh@news.iastate.edu>, <763839599snz@g8sjp.demon.co.uk>
  528. Reply-To : jayk@fc.hp.com
  529. Subject : Re: 1x1 Callsigns?
  530.  
  531. : Calls is UAE *COULD* be anything that the competent authority decides to
  532. : issue : that *begin with* A6. Who said that there HAS to be a number
  533. : following the : prefix? 'Mandatory number' is something that you appear
  534. : to have invented.
  535.  
  536. : Yes, your callsign prefix is 'N', and the reason it's followed by a '0' is
  537. : simple beacuse the FCC decided it should be that way. According to callsign
  538. : allocations for the USA, if the FCC had decided to issue you with the call
  539. : 'NOTWITHSTANDING', then that would have been perfectly legal and acceptable,
  540. : although perhaps not to you :-)
  541. : Understand?
  542. : Iain Philipps
  543.  
  544. As pointed out earlier in this string there are international agreements
  545. on this subject. I'm not sure everyone would find NOTWITHSTANDING acceptable.
  546. There are lots of exceptions though.  I have worked V7A a number of times
  547. in contests recently. I've never exactly figured out what the Bamahas is up
  548. too. They always use the whole C6A as the prefix. 
  549.  
  550. Some of the newer third world countries will issue almost anything you want
  551. it seems. But last year Mozambique dumped its C9(any thing you want) call
  552. system for the C9#Xxx. So there does seem to be a effort to use the
  553. international standard. Although it is true governments can issue most
  554. anything the wish.
  555.  
  556. I'm not sure I understand.
  557.  
  558. Peace, Jay K0GU                 jayk@fc.hp.com
  559.  
  560. ------------------------------
  561.  
  562. Date: 16 Mar 1994 20:24:04 GMT
  563. From: ihnp4.ucsd.edu!agate!howland.reston.ans.net!vixen.cso.uiuc.edu!newsrelay.iastate.edu!news.iastate.edu!wjturner@network.ucsd.edu
  564. To: info-hams@ucsd.edu
  565.  
  566. References <2m09j7$4i@apple.com>, <2m78pf$5kh@news.iastate.edu>, <763839599snz@g8sjp.demon.co.uk>re
  567. Subject : Re: 1x1 Callsigns?
  568.  
  569. Check the international agreements.  By them, ham calls are to be a one or two
  570. character prefix (can include numbers), a number (hence, the mandatory
  571. number), and a one to three letter suffix (no numbers allowed).
  572.  
  573. Using this, UAE could not issue a call A6XX since their *prefix* is A6, not A.
  574. However, they could use a call A6#XX.
  575.  
  576. >Yes, your callsign prefix is 'N', and the reason it's followed by a '0' is
  577. >simple beacuse the FCC decided it should be that way. According to callsign
  578. >allocations for the USA, if the FCC had decided to issue you with the call
  579. >'NOTWITHSTANDING', then that would have been perfectly legal and acceptable,
  580. >although perhaps not to you :-)
  581.  
  582. You are correct in the FCC assigning the 0, they could assign any number (1,
  583. 2, 3, etc), and the FCC just happens to use call-number districts.
  584.  
  585. Therefore, 'NOTWITHSTANDING' would *not* fit as there is not number, thus no
  586. prefix or suffix.  (You have to have something to attach them to.)  It may be
  587. legal, but it wouldn't be an acceptable ham call according to international
  588. agreements.
  589. -- 
  590. Will Turner,  N0RDV         ---------------------------------------------
  591. wjturner@iastate.edu        | "Are you going to have any professionalism, |
  592. twp77@isuvax.iastate.edu    | or am I going to have to beat it into you?" |
  593. TURNERW@vaxld.ameslab.gov    ---------------------------------------------
  594.  
  595. ------------------------------
  596.  
  597. Date: 10 Mar 94 12:47:21 EDT
  598. From: hayes!bcoleman@uunet.uu.net
  599. To: info-hams@ucsd.edu
  600.  
  601. References <CM2960.93I@ucdavis.edu>, <2l3nuj$pr@bigfoot.wustl.edu>, <1994Mar3.161621.4366@ke4zv.atl.ga.us>
  602. Subject : Re: JARGON
  603.  
  604. In article <1994Mar3.161621.4366@ke4zv.atl.ga.us>, gary@ke4zv.atl.ga.us (Gary Coffman) writes:
  605. > Sure. Hams also talk about their operations and illnesses a lot. Old
  606. > people tend to be sick a lot. And then there's the continuous blather
  607. > about traffic. One rare ocasions you'll stumble across a group that
  608. > actually will tackle interesting topics. 
  609.  
  610. Gary, a lot of it has to do with what you find "interesting." When we get
  611. older, perhaps we'll be spellbound to listen to descriptions of operations
  612. and illnesses.
  613.  
  614. As for traffic -- I enjoy talking about traffic, Atlanta drivers, etc.
  615.  
  616. > Some hams have a life outside radio. 
  617. > For the last two mornings, the discussion on my repeater has
  618. > centered on restoring old Dodge Powerwagons. 
  619.  
  620. Yawn.
  621.  
  622. > We also freely discuss politics, 
  623.  
  624. Sometimes interesting....
  625.  
  626. > Unix wizard tricks, 
  627.  
  628. <Snore>
  629.  
  630. > and the merits of .410 shotshell derringers versus .22 Mag derringers as 
  631. > belly guns. 
  632.  
  633. And don't forget pickup trucks. Yup, often the KE4ZV repeater becomes the
  634. "trucks and guns" repeater. Even though it isn't in the "trucks and guns"
  635. band.
  636.  
  637. > We try to keep the ham radio
  638. > related discussions off-line and handle that at lunches and over the 
  639. > telephone. Seems somehow "business related" to talk about radio on
  640. > the radio.
  641.  
  642. Depends on what you talk about.
  643.  
  644. For what it is worth, the KE4ZV repeater is kinda unique in that there's no
  645. set "pattern" to operation. If you feel like making a comment, question or
  646. just changing the subject, you just leap in and do it. There's lots of doubles,
  647. and it keeps things interesting. 
  648.  
  649. At least there's no boring roundtables. ("Well, I'll turn it to Joe. What
  650. do you have to say this morning?" "Don't have much to say other than good
  651. morning.... blah, blah, blah.")
  652.  
  653. Too bad other repeaters don't adopt this format.
  654.  
  655. -- 
  656. Bill Coleman, AA4LR                ! Internet: bcoleman@hayes.com
  657. Principal Software Engineer        ! AppleLink: D1958
  658. Hayes Microcomputer Products, Inc. ! CIS: 76067,2327
  659. POB 105203 Atlanta, GA 30348 USA   ! 
  660. Disclaimer: "My employer doesn't pay me to have opinions."
  661. Quote: "The same light shines on vineyards that makes deserts." -Steve Hackett.
  662.  
  663. ------------------------------
  664.  
  665. End of Info-Hams Digest V94 #298
  666. ******************************
  667.